*{padding: 0;
    margin: 0;}
    
    body {background-color:  black ;
    }
    
    article {background-color: black;
    padding: 20px;
    margin: 20px;
    height: 700px;}
    
    .portada { height: 650px;
        width: 400px;
        position: relative;
        left: 100px;
        border: solid 3px gray;
    }
    
    .datos 
        {background-color: black;
            color:   #f1c40f ;
            width: 1000px;
            position: relative;
            left: 650px;
            bottom: 600px;
            margin: 10px;
            padding: 10px;
            line-height: 40px;
    }
    
    .sinopsis{background-color: black;
        color:   #f1c40f ;
        width: 1000px;
        position: relative;
        left: 650px;
        bottom: 600px;
        margin: 10px;
        padding: 10px;
        line-height: 25px;
    font-size: large;
    }

    h1{ color:   #f1c40f ;
        text-align: center;
    }

    p{color:   #f1c40f ;
        font-size: x-large;
    }

    



    footer {
        height: 50px;
        color: black;
    }

    section{
        position: relative;
        top: 150px;
    }

    @media (max-width: 880px) {
        article {
            height: auto;
            margin: 10px;
            padding: 10px;
        }
    
        .portada {
            width: 90%;
            height: auto;
            left: 50%;
            transform: translateX(-50%);
        }
    
        .datos, .sinopsis {
            width: 90%;
            left: 50%;
            transform: translateX(-50%);
            bottom: auto;
            position: relative;
        }
    
        
    
        section {
            top: 50px;
        }
    }

    @media (max-width: 480px) {
        article {
            padding: 5px;
            margin: 5px;
        }
    
        .portada {
            width: 100%;
            max-width: 300px;
            height: auto;
            left: 50%;
            transform: translateX(-50%);
        }
    
        .datos, .sinopsis {
            width: 100%;
            left: 50%;
            transform: translateX(-50%);
            font-size: 14px;
            line-height: 1.4;
            padding: 5px;
        }
    
        
    
        h1 {
            font-size: 20px;
        }
    
        p {
            font-size: 16px;
        }
    
        section {
            top: 20px;
        }
    }